home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevpe.c < prev    next >
C/C++ Source or Header  |  1996-09-17  |  8KB  |  363 lines

  1. /* Copyright (C) 1989, 1990, 1991, 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpe.c  Private Eye display driver
  20.    Hacked by Fran Taylor, Reflection Technology Inc. */
  21.  
  22. #include "memory_.h"
  23. #include "gx.h"
  24. #include "gxdevice.h"
  25.  
  26. char *getenv(char *name);
  27.  
  28. typedef struct gx_device_pe_s {
  29.     gx_device_common;
  30.     byte *fbaddr;
  31.     unsigned regs;
  32. } gx_device_pe;
  33. #define pedev ((gx_device_pe *)dev)
  34.  
  35. typedef struct {
  36.     ushort reg, val;
  37. } regval;
  38.  
  39. #define XSIZE 720
  40. #define YSIZE 280
  41. #define BPL 90
  42. #define XPPI 160.0
  43. #define YPPI 96.0
  44. #define DEFAULT_ADDRESS ((byte *) 0xb8000000)
  45. #define DEFAULT_REGISTERS 0x3d0
  46.  
  47. dev_proc_open_device(pe_open);
  48. dev_proc_close_device(pe_close);
  49. dev_proc_fill_rectangle(pe_fill_rectangle);
  50. dev_proc_copy_mono(pe_copy_mono);
  51.  
  52. private gx_device_procs pe_procs =
  53. {    pe_open,
  54.     NULL,            /* get_initial_matrix */
  55.     NULL,            /* sync_output */
  56.     NULL,            /* output_page */
  57.     pe_close,
  58.     NULL,            /* map_rgb_color */
  59.     NULL,            /* map_color_rgb */
  60.     pe_fill_rectangle,
  61.     NULL,            /* tile_rectangle */
  62.     pe_copy_mono,
  63.     NULL            /* copy_color */
  64. };
  65.  
  66. gx_device_pe far_data gs_pe_device = 
  67. {    std_device_std_body(gx_device_pe, &pe_procs, "pe",
  68.       XSIZE, YSIZE, XPPI, YPPI),
  69.      { 0 },        /* std_procs */
  70.     DEFAULT_ADDRESS, DEFAULT_REGISTERS
  71. };
  72.  
  73. static regval peinit[] = {{0x04, 0x1e}, {0x05, 0x00},
  74.               {0x04, 0x0c}, {0x05, 0x21},
  75.               {0x04, 0x0d}, {0x05, 0x98},
  76.               {0x08, 0x00}, {0x08, 0x1e},
  77.               {0x04, 0x1e}, {0x05, 0x01}};
  78.  
  79. static regval pedone[] = {{0x04, 0x1e}, {0x05, 0x10},
  80.               {0x04, 0x0a}, {0x05, 0x00},
  81.               {0x04, 0x0b}, {0x05, 0x07},
  82.               {0x04, 0x0c}, {0x05, 0x00},
  83.               {0x04, 0x0d}, {0x05, 0x00},
  84.               {0x04, 0x0e}, {0x05, 0x00},
  85.               {0x04, 0x0f}, {0x05, 0x00},
  86.               {0x08, 0x00}, {0x08, 0x29}};
  87.  
  88. int pe_open(gx_device *dev)
  89. {
  90.     char *str;
  91.     int i;
  92.  
  93.     if ((str = getenv("PEFBADDR")) != 0)
  94.     {
  95.         if (!sscanf(str, "%lx", &(pedev->fbaddr)))
  96.         {
  97.             eprintf("Private Eye: PEFBADDR environment string format error\n");
  98.             exit(1);
  99.         }
  100.     }
  101.  
  102.     if ((str = getenv("PEREGS")) != 0)
  103.     {
  104.         if (!sscanf(str, "%x", &(pedev->regs)))
  105.         {
  106.             eprintf("Private Eye: PEREGS environment string format error\n");
  107.             exit(1);
  108.         }
  109.     }
  110.  
  111.     for (i = 0; i < 10; i++)
  112.         outportb(pedev->regs + peinit[i].reg, peinit[i].val);
  113.  
  114.     return 0;
  115. }
  116.  
  117. int pe_close(gx_device *dev)
  118. {
  119.     int i;
  120.  
  121.     /* restore the screen */
  122.     for (i = 0; i < 16; i++)
  123.         outportb(pedev->regs + pedone[i].reg, pedone[i].val);
  124.  
  125.     /* clear the frame buffer */
  126.     memset(pedev->fbaddr, 0, 4000);
  127.  
  128.     return 0;
  129. }
  130.  
  131. int pe_fill_rectangle(gx_device *dev, int x1, int y1, int w, int h,
  132.                       gx_color_index color)
  133. {
  134.     int x2, y2, xlen;
  135.     byte led, red, d;
  136.     byte *ptr;
  137.  
  138.     /* cull */
  139.  
  140.     if ((w <= 0) || (h <= 0) || (x1 > XSIZE) || (y1 > YSIZE))
  141.         return 0;
  142.  
  143.     x2 = x1 + w - 1;
  144.     y2 = y1 + h - 1;
  145.  
  146.     /* cull some more */
  147.  
  148.     if ((x2 < 0) || (y2 < 0))
  149.         return 0;
  150.  
  151.     /* clip */
  152.  
  153.     if (x1 < 0) x1 = 0;
  154.     if (x2 > XSIZE-1) x2 = XSIZE-1;
  155.     if (y1 < 0) y1 = 0;
  156.     if (y2 > YSIZE-1) y2 = YSIZE-1;
  157.  
  158.     w = x2 - x1 + 1;
  159.     h = y2 - y1 + 1;
  160.     xlen = (x2 >> 3) - (x1 >> 3) - 1;
  161.     led = 0xff >> (x1 & 7);
  162.     red = 0xff << (7 - (x2 & 7));
  163.  
  164.     ptr = pedev->fbaddr + (y1 * BPL) + (x1 >> 3);
  165.  
  166.     if (color)
  167.     {
  168.         /* here to set pixels */
  169.         
  170.         if (xlen == -1)
  171.         {
  172.             /* special for rectangles that fit in a byte */
  173.             
  174.             d = led & red;
  175.             for(; h >= 0; h--, ptr += BPL)
  176.                 *ptr |= d;
  177.             return 0;
  178.         }
  179.         
  180.         /* normal fill */
  181.         
  182.         for(; h >= 0; h--, ptr += BPL)
  183.         {    register int x = xlen;
  184.             register byte *p = ptr;
  185.             *p++ |= led;
  186.             while ( x-- ) *p++ = 0xff;
  187.             *p |= red;
  188.         }
  189.     }
  190.  
  191.     /* here to clear pixels */
  192.  
  193.     led = ~led;
  194.     red = ~red;
  195.  
  196.     if (xlen == -1)
  197.     {
  198.         /* special for rectangles that fit in a byte */
  199.         
  200.         d = led | red;
  201.         for(; h >= 0; h--, ptr += BPL)
  202.             *ptr &= d;
  203.         return 0;
  204.     }
  205.  
  206.     /* normal fill */
  207.         
  208.     for(; h >= 0; h--, ptr += BPL)
  209.     {    register int x = xlen;
  210.         register byte *p = ptr;
  211.         *p++ &= led;
  212.         while ( x-- ) *p++ = 0x00;
  213.         *p &= red;
  214.     }
  215.     return 0;
  216. }
  217.  
  218. int pe_copy_mono(gx_device *dev,
  219.          const byte *base, int sourcex, int raster, gx_bitmap_id id,
  220.                  int x, int y, int w, int h, 
  221.          gx_color_index zero, gx_color_index one)
  222. {
  223.     const byte *line;
  224.     int sleft, dleft;
  225.     int mask, rmask;
  226.     int invert, zmask, omask;
  227.     byte *dest;
  228.     int offset;
  229.  
  230. #define izero (int)zero
  231. #define ione (int)one
  232.  
  233. if ( ione == izero )        /* vacuous case */
  234.         return pe_fill_rectangle(dev, x, y, w, h, zero);
  235.  
  236.     /* clip */
  237.  
  238.     if ((x > XSIZE) || (y > YSIZE) || ((x + w) < 0) || ((y + h) < 0))
  239.         return 0;
  240.  
  241.     offset = x >> 3;
  242.     dest = pedev->fbaddr + (y * BPL) + offset;
  243.     line = base + (sourcex >> 3);
  244.     sleft = 8 - (sourcex & 7);
  245.     dleft = 8 - (x & 7);
  246.     mask = 0xff >> (8 - dleft);
  247.     if ( w < dleft )
  248.         mask -= mask >> w;
  249.     else
  250.         rmask = 0xff00 >> ((w - dleft) & 7);
  251.  
  252.     /* Macros for writing partial bytes. */
  253.     /* bits has already been inverted by xor'ing with invert. */
  254.  
  255. #define write_byte_masked(ptr, bits, mask)\
  256.   *ptr = ((bits | ~mask | zmask) & *ptr | (bits & mask & omask))
  257.  
  258. #define write_byte(ptr, bits)\
  259.   *ptr = ((bits | zmask) & *ptr | (bits & omask))
  260.  
  261. /*    if ( dev->invert )
  262.     {
  263.         if ( izero != (int)gx_no_color_index ) zero ^= 1;
  264.         if ( ione != (int)gx_no_color_index ) one ^= 1;
  265.     } */
  266.     invert = (izero == 1 || ione == 0 ? -1 : 0);
  267.     zmask = (izero == 0 || ione == 0 ? 0 : -1);
  268.     omask = (izero == 1 || ione == 1 ? -1 : 0);
  269.  
  270. #undef izero
  271. #undef ione
  272.  
  273.     if (sleft == dleft)        /* optimize the aligned case */
  274.     {
  275.         w -= dleft;
  276.         while ( --h >= 0 )
  277.         {
  278.             register const byte *bptr = line;
  279.             int count = w;
  280.             register byte *optr = dest;
  281.             register int bits = *bptr ^ invert;    /* first partial byte */
  282.             
  283.             write_byte_masked(optr, bits, mask);
  284.             
  285.             /* Do full bytes. */
  286.             
  287.             while ((count -= 8) >= 0)
  288.             {
  289.                 bits = *++bptr ^ invert;
  290.                 ++optr;
  291.                 write_byte(optr, bits);
  292.             }
  293.             
  294.             /* Do last byte */
  295.             
  296.             if (count > -8)
  297.             {
  298.                 bits = *++bptr ^ invert;
  299.                 ++optr;
  300.                 write_byte_masked(optr, bits, rmask);
  301.             }
  302.             dest += BPL;
  303.             line += raster;
  304.         }
  305.     }
  306.     else
  307.     {
  308.         int skew = (sleft - dleft) & 7;
  309.         int cskew = 8 - skew;
  310.         
  311.         while (--h >= 0)
  312.         {
  313.             const byte *bptr = line;
  314.             int count = w;
  315.             byte *optr = dest;
  316.             register int bits;
  317.             
  318.             /* Do the first partial byte */
  319.             
  320.             if (sleft >= dleft)
  321.             {
  322.                 bits = *bptr >> skew;
  323.             }    
  324.             else /* ( sleft < dleft ) */
  325.             {
  326.                 bits = *bptr++ << cskew;
  327.                 if (count > sleft)
  328.                     bits += *bptr >> skew;
  329.             }
  330.             bits ^= invert;
  331.             write_byte_masked(optr, bits, mask);
  332.             count -= dleft;
  333.             optr++;
  334.             
  335.             /* Do full bytes. */
  336.             
  337.             while ( count >= 8 )
  338.             {
  339.                 bits = *bptr++ << cskew;
  340.                 bits += *bptr >> skew;
  341.                 bits ^= invert;
  342.                 write_byte(optr, bits);
  343.                 count -= 8;
  344.                 optr++;
  345.             }
  346.             
  347.             /* Do last byte */
  348.             
  349.             if (count > 0)
  350.             {
  351.                 bits = *bptr++ << cskew;
  352.                  if (count > skew)
  353.                     bits += *bptr >> skew;
  354.                 bits ^= invert;
  355.                 write_byte_masked(optr, bits, rmask);
  356.             }
  357.             dest += BPL;
  358.             line += raster;
  359.         }
  360.     }
  361.     return 0;
  362. }
  363.